nav{
    display: flex;
    flex-direction: row;
    height: 120px;
    background-color: var(--light-primary-color);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: right;
    height: inherit;
    padding-right: 2rem;
}

nav a{
    color: var(--primary-text-color);
    text-decoration: none;
    position: relative;
    padding: 2px;
}


nav a::after{
    content: '';
    height: 3px;
    width: 0%;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 250ms ease-in-out;
}

nav a:hover::after{
    width: 100%;
}

nav img{
    padding-left:10%;
}



.section_about_us{
    position: relative;
    
    max-height: 500px;
    overflow-y: hidden;
    text-align: center;;
    background-color: var(--light-primary-color);
}

.section_about_us img{
    width: 100%;
}

.section_about_us p{
    text-align: left;
    position: absolute;
    margin-left: 10%;
    width: 30%;
    padding: 1.5rem;
    top: 10%;
    background-color: rgba(217, 217, 217, 0.7);
}

.section_service{
    background-color: var(--light-primary-color);
    padding-bottom: 30px;
    padding-top: 30px;
}

.div_service_container{
    justify-content: center;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 3.12rem;
    
}

.div_service_element{
    text-align: center;
    flex: 0 0 calc(33.33% - 10px); 
    background-color: var(--light-secondary-color);
    padding: 2rem;
}

.div_service_element img{
    height: 5rem;
    padding-top: 30px;
    padding-bottom: 30px;
}


.section_karte{
    display: none;
    position: relative;
    width: auto;
    background-color: var(--light-primary-color);
    
}
.section_karte img{
    position: absolute;
    height: 100%;
    z-index: 200;
    filter: blur(10px);
}

.div_karte_content{
    position: absolute;
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 300;
    gap: 5%;
}

.div_karte_content p{
    width: 80%;
}

#google-maps-container{
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
}

#google-maps-container iframe{
    position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
}

.div_karte_content p{
    text-align: center;
    color: whitesmoke;
}

.div_karte_content a{
    text-decoration: none;
    color: whitesmoke
}

.div_karte_content button{
    font-weight: bold;
    font-size: inherit;
    background-color: none;
    
    padding: 5px;
}







.section_contact{
    background-color: var(--primary-color);
    display: flex;
    gap: 50px;
    color: var(--secondary-text-color);
    border-bottom: 3px solid #fff;
    justify-content: space-around;
    padding-top:30px;
    padding-bottom:30px;
}

.section_contact ul{
    list-style: none;
}

.section_cite{
    background-color: var(--secondary-color);
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--secondary-text-color);
    font-style: italic;
    font-weight: 300;
    text-align: center;
}


footer{
    background-color: var(--primary-color);
}

footer ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    min-height: 50px;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}



footer ul li a{
    color: var(--secondary-text-color);
    text-decoration: none;
}


.section_impressum{
    padding-bottom: 30px;
    display: none;
}

.section_datenschutz{
    padding-bottom: 30px;
    display: none;
}

@media screen and (max-width: 2000px) {
    body{
        font-size: 20px;
    }

    h1{
        font-size: 24px;
    }

    h2{
        font-size: 18px;
    }
    
}

@media screen and (max-width: 1024px) {
    body{
        font-size: 16px;
    }

    h1{
        font-size: 18px;
    }

    h2{
        font-size: 18px;
    }

    nav ul li{
        display: none;
    }
    

}

@media screen and (max-width: 600px) {

    .section_contact{
        flex-direction: column;
        padding-left: 5%;
    }

    footer ul{
        flex-direction: column;
    }
    body{
        font-size: 12px;
    }

    h1{
        font-size: 14px;
    }

    h2{
        font-size: 14px;
    }

    .section_about_us p{
        font-size: 8px;
    }

}